InitTransform
TheInitTransform
method initializes this transform. This method is needed only if you subclassODTransform
.
void InitTransform ();DISCUSSION
This method is not called directly to initialize this transform object, but is called by a subclass-specific initialization method. By convention, every subclass ofODTransform
should have a separate initialization method (for example, theInitMyTransform
method) that is called when an instance of that subclass is created. The initialization method may have additional parameters beyond those of theInitTransform
method. TheInitMyTransform
method should call the inheritedInitTransform
method at the beginning of its implementation.If you subclass
ODTransform
, your subclass-specific initialization method, rather than itssomInit
method, should handle any initialization code that can potentially fail. For example, your initialization method may attempt to allocate memory for your transform.OVERRIDING
If you subclassODTransform
, you should not override this method.
Main | Page One | What's New | Apple Computer, Inc. | Find It | Contact Us | Help